home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _8F3137E3FC484FC99487DDBDC91A384E < prev    next >
Encoding:
Text File  |  2006-08-04  |  786 b   |  30 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for Cutout effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Cutout():
  14.     return {
  15.         'InteriorColor': (255, 255, 255),
  16.         'Opacity': 50,
  17.         'ShadowColor': (0, 0, 0),
  18.         'Vertical': 10,
  19.         'Blur': 5.0,
  20.         'GeneralSettings': {
  21.             'AutoActionMode': 0,
  22.             'ExecutionMode': 0
  23.             },
  24.         'Horizontal': 10,
  25.         'FillInterior': 1
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do( Environment, 'Cutout', Preset_Cutout())
  30.